home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
20
/
5
/
DISK2058.ZIP
/
UNFAST.EXE
/
VARS.HLP
< prev
next >
Wrap
Text File
|
1980-01-01
|
665b
|
15 lines
VARIABLE ASSIGNMENTS
====================
var *= n Multiplies var by n, storing result in var.
var ++ Increments var (by 1), storing result in var.
var += n Adds n to var, storing result in var.
var -- Decrements var (by 1), storing result in var.
var -= n Subtracts n from var, storing result in var.
var /= n Divides var by n, storing result in var.
var = n Gives var the value of n.
var @ n Gives the variable a new address in memory (the default address
is somewhere after the FAST code).
Note ! A variables address must be set before the variable is used anywhere.
! n must be a constant.